home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / VALIDATE.PAK / VALIDATE.RC < prev    next >
Text File  |  1997-05-06  |  3KB  |  70 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1993, 1996 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #if !defined(WORKSHOP_INVOKED)
  6. # include <windows.h>
  7. #endif
  8.  
  9. #define   IDM_MAINMENU        200
  10. #define   CM_EMPINPUT         201
  11.  
  12. #define   IDD_EMPLOYEEINFO    1000
  13. #define   IDC_NAME            101
  14. #define   IDC_SS              102
  15. #define   IDC_EMPID           103
  16. #define   IDC_DEPT            104
  17. #define   IDC_SECURITY        105
  18. #define   IDC_FTIME           106
  19. #define   IDC_PERMANENT       107
  20. #define   IDC_EXEMPT          108
  21. #define   IDC_EDIT1           109
  22. #define   IDC_CUSTOM          110
  23. #define   IDC_EDIT2           111
  24.  
  25. #if defined(RC_INVOKED)
  26.  
  27. #include <owl/window.rh>
  28. #include <owl/validate.rh>
  29. #include <owl/validate.rc>
  30. #include <owl/except.rc>
  31. #include <owl/owlapp.rc>         
  32.  
  33.  
  34. IDM_MAINMENU MENU
  35. {
  36.   POPUP "&Input"
  37.   {
  38.     MENUITEM "&Employee", CM_EMPINPUT
  39.     MENUITEM SEPARATOR
  40.     MENUITEM "E&xit", CM_EXIT
  41.   }
  42. }
  43.  
  44. IDD_EMPLOYEEINFO DIALOG 65, 36, 174, 130
  45. STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU
  46. FONT 8, "MS Sans Serif"
  47. {
  48.  RTEXT "&Name:", -1, 6, 8, 29, 9, SS_RIGHT | NOT WS_GROUP
  49.  EDITTEXT IDC_NAME, 36, 6, 129, 12
  50.  RTEXT "&SS#:", -1, 6, 26, 29, 9, SS_RIGHT | NOT WS_GROUP
  51.  EDITTEXT IDC_SS, 36, 24, 48, 12
  52.  RTEXT "Emp. &ID:", -1, 105, 26, 32, 9, SS_RIGHT | WS_CHILD | WS_VISIBLE
  53.  EDITTEXT IDC_EMPID, 138, 24, 27, 12
  54.  RTEXT "&Dept:", -1, 6, 44, 29, 9, SS_RIGHT | NOT WS_GROUP
  55.  EDITTEXT IDC_DEPT, 36, 42, 48, 12, ES_LEFT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP
  56.  RTEXT "Se&curity:", -1, 6, 62, 29, 9, SS_RIGHT | NOT WS_GROUP
  57.  EDITTEXT IDC_SECURITY, 36, 60, 48, 12, ES_LEFT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP
  58.  CONTROL "&Full Time", IDC_FTIME, "BUTTON", BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 110, 45, 50, 10
  59.  CONTROL "&Permanent", IDC_PERMANENT, "BUTTON", BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 110, 57, 50, 10
  60.  CONTROL "&Exempt", IDC_EXEMPT, "BUTTON", BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 110, 69, 50, 10
  61.  DEFPUSHBUTTON "OK", IDOK, 36, 112, 48, 14
  62.  PUSHBUTTON "Cancel", IDCANCEL, 90, 112, 48, 14
  63.  EDITTEXT IDC_EDIT1, 5, 90, 77, 12
  64.  EDITTEXT IDC_EDIT2, 98, 90, 67, 12
  65.  PUSHBUTTON "->", IDC_CUSTOM, 84, 90, 12, 12
  66.  GROUPBOX "", -1, 103, 38, 60, 44, BS_GROUPBOX
  67. }
  68.  
  69. #endif  // RC_INVOKED
  70.